home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
United Public Domain Gold 2
/
United Public Domain Gold 2.iso
/
utilities
/
pu453.dms
/
pu453.adf
/
extras
/
basic_sources
/
Led_Brightness.bas
< prev
next >
Wrap
BASIC Source File
|
1992-11-08
|
846b
|
57 lines
SCREEN 1,320,256,2,1
WINDOW 1,"",(0,0)-(300,240),0,1
PALETTE 0,0,0,0
PALETTE 1,0,0,0
PALETTE 2,1,1,1
PALETTE 3,1,0,0
COLOR 2 :
PRINT "Move the mouse"
PRINT "left and right"
PRINT "to control the"
PRINT "brightness of"
PRINT "the POWER LED"
PRINT " A "
PRINT " DAC"
PRINT " production"
COLOR 3
PRINT ""
PRINT ""
PRINT "Warning :"
PRINT "Applying over 6"
PRINT "volts to the "
PRINT "LED may shorten"
PRINT "its working life"
PRINT "Please keep below"
PRINT "the 6Volt mark"
PRINT "on the scale .."
COLOR 2
FOR x = 1 TO 10
y = (x*24)
y1= (x*3)-2
LOCATE 26,y1 : PRINT x
LOCATE 25,y1+1 : PRINT "|"
LOCATE 27,y1+1 : PRINT "|"
NEXT x
LOCATE 26,y1+5 : PRINT "Volts"
LIBRARY "graphics.library"
WHILE MOUSE(0)=0
waittof
POKEW &Hbfe000,20220
k = MOUSE(1)/3
FOR x = 1 TO k : NEXT x
POKEW &Hbfe000,20222
WEND
SYSTEM